projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a1143b
)
Fix compat change in last check-in
author
Lars Ingebrigtsen
<larsi@gnus.org>
Sat, 13 Feb 2016 06:04:00 +0000
(17:04 +1100)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Sat, 13 Feb 2016 06:04:00 +0000
(17:04 +1100)
* lisp/gnus/gnus-group.el
(gnus-group-name-charset-group-alist): `find-coding-system'
doesn't exist in Emacs.
lisp/gnus/gnus-group.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/gnus-group.el
b/lisp/gnus/gnus-group.el
index 3b481db9f31ba6ac550d11184eda3c0a71fdab76..1602c475361b72df3108e021db269633f4dc30b4 100644
(file)
--- a/
lisp/gnus/gnus-group.el
+++ b/
lisp/gnus/gnus-group.el
@@
-421,8
+421,7
@@
For example:
:type '(repeat (cons (sexp :tag "Method") (symbol :tag "Charset"))))
(defcustom gnus-group-name-charset-group-alist
- (if (or (find-coding-system 'utf-8)
- (mm-coding-system-p 'utf-8))
+ (if (mm-coding-system-p 'utf-8)
'((".*" . utf-8))
nil)
"Alist of group regexp and the charset for group names.